as const satisfies T
なぜリストに対しては使えない?
code:ts
type Place = {
label: string;
picUrl: string;
};
const places = [
{
label: 'その他',
},
{
label: 'リビング',
},
] as const satisfies Place[]; // error
この値のplacesから、
type Name = (typeof places)[number]['label'];としたい